Skip to content

chore(deps): update dependency @playwright/test to ^1.58.2#425

Open
homarr-renovate[bot] wants to merge 1 commit intomasterfrom
renovate/playwright-monorepo
Open

chore(deps): update dependency @playwright/test to ^1.58.2#425
homarr-renovate[bot] wants to merge 1 commit intomasterfrom
renovate/playwright-monorepo

Conversation

@homarr-renovate
Copy link
Contributor

@homarr-renovate homarr-renovate bot commented Sep 28, 2025

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) ^1.55.0 -> ^1.58.2 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.58.2

Compare Source

Highlights

#​39121 fix(trace viewer): make paths via stdin work
#​39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.1

Compare Source

Highlights

#​39036 fix(msedge): fix local network permissions
#​39037 chore: update cft download location
#​38995 chore(webkit): disable frame sessions on fronzen builds

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

v1.58.0

Compare Source

📣 Playwright CLI+SKILLs 📣

We are adding a new token-efficient CLI mode of operation to Playwright with the skills located at playwright-cli. This brings the long-awaited official SKILL-focused CLI mode to our story and makes it more coding agent-friendly.

It is the first snapshot with the essential command set (which is already larger than the original MCP!), but we expect it to grow rapidly. Unlike the token use, that one we expect to go down since snapshots are no longer forced into the LLM!

Timeline

If you're using merged reports, the HTML report Speedboard tab now shows the Timeline:

Timeline chart in the HTML report

UI Mode and Trace Viewer Improvements

  • New 'system' theme option follows your OS dark/light mode preference
  • Search functionality (Cmd/Ctrl+F) is now available in code editors
  • Network details panel has been reorganized for better usability
  • JSON responses are now automatically formatted for readability

Thanks to @​cpAdm for contributing these improvements!

Miscellaneous

browserType.connectOverCDP() now accepts an isLocal option. When set to true, it tells Playwright that it runs on the same host as the CDP server, enabling file system optimizations.

Breaking Changes ⚠️

  • Removed _react and _vue selectors. See locators guide for alternatives.
  • Removed :light selector engine suffix. Use standard CSS selectors instead.
  • Option devtools from browserType.launch() has been removed. Use args: ['--auto-open-devtools-for-tabs'] instead.
  • Removed macOS 13 support for WebKit. We recommend to upgrade your macOS version, or keep using an older Playwright version.

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 144
  • Microsoft Edge 144

v1.57.0

Compare Source

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

speedboard

It shows you all your executed tests sorted by slowness,
and can help you understand where your test suite is taking longer than expected.
Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

new and old logo

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@​playwright/test';

export default defineConfig({
  webServer: {
    command: 'npm run start',
    wait: {
      stdout: '/Listening on port (?<my_server_port>\\d+)/'
    },
  },
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@&#8203;playwright/test';

test.use({ baseUrl: `http://localhost:${process.env.MY_SERVER_PORT ?? 3000}` });

test('homepage', async ({ page }) => {
  await page.goto('/');
});

This is not just useful for capturing varying ports of dev servers. You can also use it to wait for readiness of a service that doesn't expose an HTTP readiness check, but instead prints a readiness message to stdout or stderr.

Breaking Change

After 3 years of being deprecated, we removed Page#accessibility from our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.

New APIs

  • New property testConfig.tag adds a tag to all tests in this run. This is useful when using merge-reports.
  • worker.on('console') event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. worker.waitForEvent() can be used to wait for it.
  • locator.description() returns locator description previously set with locator.describe(), and Locator.toString() now uses the description when available.
  • New option steps in locator.click() and locator.dragTo() that configures the number of mousemove events emitted while moving the mouse pointer to the target element.
  • Network requests issued by Service Workers are now reported and can be routed through the BrowserContext, only in Chromium. You can opt out using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK environment variable.
  • Console messages from Service Workers are dispatched through worker.on('console'). You can opt out of this using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE environment variable.

Browser Versions

  • Chromium 143.0.7499.4
  • Mozilla Firefox 144.0.2
  • WebKit 26.0

v1.56.1

Compare Source

Highlights

#​37871 chore: allow local-network-access permission in chromium
#​37891 fix(agents): remove workspaceFolder ref from vscode mcp
#​37759 chore: rename agents to test agents
#​37757 chore(mcp): fallback to cwd when resolving test config

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.56.0

Compare Source

Playwright Agents

Introducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test:

  • 🎭 planner explores the app and produces a Markdown test plan
  • 🎭 generator transforms the Markdown plan into the Playwright Test files
  • 🎭 healer executes the test suite and automatically repairs failing tests

Run npx playwright init-agents with your client of choice to generate the latest agent definitions:

# Generate agent files for each agentic loop
# Visual Studio Code
npx playwright init-agents --loop=vscode

# Claude Code
npx playwright init-agents --loop=claude

# opencode
npx playwright init-agents --loop=opencode

[!NOTE]
VS Code v1.105 (currently on the VS Code Insiders channel) is needed for the agentic experience in VS Code. It will become stable shortly, we are a bit ahead of times with this functionality!

Learn more about Playwright Agents

New APIs

UI Mode and HTML Reporter

  • Added option to 'html' reporter to disable the "Copy prompt" button
  • Added option to 'html' reporter and UI Mode to merge files, collapsing test and describe blocks into a single unified list
  • Added option to UI Mode mirroring the --update-snapshots options
  • Added option to UI Mode to run only a single worker at a time

Breaking Changes

Miscellaneous

  • Aria snapshots render and compare input placeholder
  • Added environment variable PLAYWRIGHT_TEST to Playwright worker processes to allow discriminating on testing status

Browser Versions

  • Chromium 141.0.7390.37
  • Mozilla Firefox 142.0.1
  • WebKit 26.0

v1.55.1

Compare Source

Highlights

#​37479 - [Bug]: Upgrade Chromium to 140.0.7339.186.
#​37147 - [Regression]: Internal error: step id not found.
#​37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects.
#​37137 - Revert "fix(a11y): track inert elements as hidden".
#​37532 - chore: do not use -k option

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@netlify
Copy link

netlify bot commented Sep 28, 2025

Deploy Preview for homarr-docs ready!

Name Link
🔨 Latest commit 543ab1a
🔍 Latest deploy log https://app.netlify.com/projects/homarr-docs/deploys/69a1ffed298a680007a0a3d2
😎 Deploy Preview https://deploy-preview-425--homarr-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 26 (🟢 up 1 from production)
Accessibility: 96 (no change from production)
Best Practices: 83 (no change from production)
SEO: 97 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@argos-ci
Copy link

argos-ci bot commented Sep 28, 2025

The latest updates on your projects. Learn more about Argos notifications ↗︎

Build Status Details Updated (UTC)
default (Inspect) ⚠️ Changes detected (Review) 71 changed Feb 27, 2026, 8:45 PM

@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 6 times, most recently from e4b069d to 84ae45c Compare October 3, 2025 20:30
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 5 times, most recently from c9d21e9 to 037bcdc Compare October 11, 2025 15:24
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.55.1 chore(deps): update dependency @playwright/test to ^1.56.0 Oct 11, 2025
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 7 times, most recently from be6f3a5 to 4180533 Compare October 18, 2025 19:26
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch from 4180533 to 6fdb319 Compare October 22, 2025 02:04
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.56.0 chore(deps): update dependency @playwright/test to ^1.56.1 Oct 22, 2025
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 5 times, most recently from 71d808a to d68f133 Compare October 25, 2025 01:57
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 2ff3360 to c922ef4 Compare October 31, 2025 19:27
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 5 times, most recently from 0eb0a67 to 9dd7fe0 Compare January 24, 2026 21:22
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch from 9dd7fe0 to e38983a Compare January 28, 2026 12:56
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.57.0 chore(deps): update dependency @playwright/test to ^1.58.0 Jan 28, 2026
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from dcceb91 to 355d986 Compare February 4, 2026 18:56
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.58.0 chore(deps): update dependency @playwright/test to ^1.58.1 Feb 4, 2026
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 01c2a19 to edc53ed Compare February 11, 2026 18:01
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.58.1 chore(deps): update dependency @playwright/test to ^1.58.2 Feb 11, 2026
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 181c007 to fcca02d Compare February 13, 2026 20:43
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 71a6110 to c8199c5 Compare February 24, 2026 19:09
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.58.2 chore(deps): update dependency @playwright/test to ^1.58.2 - autoclosed Feb 25, 2026
@homarr-renovate homarr-renovate bot closed this Feb 25, 2026
@homarr-renovate homarr-renovate bot deleted the renovate/playwright-monorepo branch February 25, 2026 18:00
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.58.2 - autoclosed chore(deps): update dependency @playwright/test to ^1.58.2 Feb 25, 2026
@homarr-renovate homarr-renovate bot reopened this Feb 25, 2026
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 5b2b9cb to 8ae306a Compare February 27, 2026 16:48
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch from 8ae306a to 543ab1a Compare February 27, 2026 20:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants